home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Softshoe Source
/
SoftshoeApplication.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
550b
|
29 lines
// SoftshoeApplication.h
#ifndef SoftshoeApplication_h
#define SoftshoeApplication_h
#ifndef SoftshoeFilter_h
#include "SoftshoeFilter.h"
#endif
#ifndef BackgroundApplication_h
#include "BackgroundApplication.h"
#endif
class SoftshoeApplication: public BackgroundApplication
{
private:
SoftshoeFilter filter;
SoftshoeApplication();
// not implemented:
SoftshoeApplication( const SoftshoeApplication& );
SoftshoeApplication& operator=( const SoftshoeApplication& );
public:
static SoftshoeApplication& The();
};
#endif